home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _263F99482CF64DBBA20AFC8D9C3609C5 < prev    next >
Encoding:
Text File  |  2006-08-04  |  738 b   |  28 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for PolishedStone effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_PolishedStone():
  14.     return {
  15.         'Polishing': 15,
  16.         'Angle': 45,
  17.         'Blur': 20,
  18.         'Color': (255, 255, 255),
  19.         'GeneralSettings': {
  20.             'AutoActionMode': 0,
  21.             'ExecutionMode': 0
  22.             },
  23.         'Detail': 145
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'PolishedStone', Preset_PolishedStone())
  28.